home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / vms-gcc.mak < prev    next >
Text File  |  1997-06-06  |  4KB  |  100 lines

  1. $ !   Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2. $ ! 
  3. $ ! This file is part of Aladdin Ghostscript.
  4. $ !
  5. $ ! Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6. $ ! or distributor accepts any responsibility for the consequences of using it,
  7. $ ! or for whether it serves any particular purpose or works at all, unless he
  8. $ ! or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9. $ ! License (the "License") for full details.
  10. $ ! 
  11. $ ! Every copy of Aladdin Ghostscript must include a copy of the License,
  12. $ ! normally in a plain ASCII text file named PUBLIC.  The License grants you
  13. $ ! the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14. $ ! under certain conditions described in the License.  Among other things, the
  15. $ ! License requires that the copyright notice and this notice be preserved on
  16. $ ! all copies.
  17. $ !
  18. $ !
  19. $ ! "makefile" for Ghostscript, VMS / GNU C / DECwindows (X11) configuration.
  20. $ !
  21. $ !
  22. $ ! Execute this command file while in the Ghostscript directory!
  23. $ !
  24. $ !
  25. $ ! To build a debugging configuration, issue the command:
  26. $ !
  27. $ !          $ @VMS-GCC.MAK DEBUG
  28. $ !
  29. $ ! Do not  abbreviate "DEBUG".  To specify an alternate directory for
  30. $ ! GS_LIB_DEFAULT, issue the command:
  31. $ !
  32. $ !          $ @VMS-GCC.MAK directory
  33. $ !
  34. $ ! with "directory" a fully qualified directory name.  "directory" cannot
  35. $ ! be DEBUG (otherwise it will be confused with the DEBUG switch).  Both
  36. $ ! the DEBUG switch and a directory name may be specified on the same
  37. $ ! command line and in either order.
  38. $ !
  39. $ !
  40. $ ! Declare local DCL symbols used by VMS.MAK
  41. $ !
  42. $ CC_QUAL    = ""                      ! Qualifiers for the compile comand
  43. $ L_QUAL     = ""                      ! Qualifiers for the link command
  44. $ CC_COMMAND = "GCC"                   ! Compile command
  45. $ X_INCLUDE  = F$TRNLNM("SYS$COMMON")  ! Used to find path to X11 include files
  46. $ !
  47. $ GS_DOCDIR      = F$ENVIRONMENT("DEFAULT")
  48. $ GS_INIT        = "GS_INIT.PS"
  49. $ GS_LIB_DEFAULT = F$ENVIRONMENT("DEFAULT")
  50. $ SEARCH_HERE_FIRST = 1
  51. $ CONFIG         = ""
  52. $ FEATURE_DEVS   = "level2.dev pdf.dev"
  53. $ COMPILE_INITS  = "0"
  54. $ BAND_LIST_STORAGE = "file"
  55. $ BAND_LIST_COMPRESSOR = "zlib"
  56. $ FILE_IMPLEMENTATION = "stdio"
  57. $ DEVICE_DEVS    = "x11.dev x11alpha.dev x11cmyk.dev x11mono.dev"
  58. $ DEVICE_DEVS3   = "deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev"
  59. $ DEVICE_DEVS4   = "cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev"
  60. $ DEVICE_DEVS6   = "bj10e.dev bj200.dev bjc600.dev bjc800.dev"
  61. $ DEVICE_DEVS7   = "faxg3.dev faxg32d.dev faxg4.dev"
  62. $ DEVICE_DEVS8   = "pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev"
  63. $ DEVICE_DEVS9   = "pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev"
  64. $ DEVICE_DEVS10  = "tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev"
  65. $ DEVICE_DEVS11  = "tiff12nc.dev tiff24nc.dev"
  66. $ DEVICE_DEVS12  = "psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev"
  67. $ DEVICE_DEVS13  = "pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev"
  68. $ DEVICE_DEVS14  = "jpeg.dev jpeggray.dev"
  69. $ DEVICE_DEVS15  = "pdfwrite.dev"
  70. $ !
  71. $ !
  72. $ ! Is GNU C about and defined?
  73. $ !
  74. $ IF F$TRNLNM("GNU_CC") .NES. "" THEN GOTO GNU_CC_OKAY
  75. $ WRITE SYS$OUTPUT "GNU_CC logical is undefined.  You must execute the command"
  76. $ WRITE SYS$OUTPUT "file GCC_INSTALL.COM in the GNU CC directory before using"
  77. $ WRITE SYS$OUTPUT "this command file."
  78. $ EXIT
  79. $ !
  80. $ GNU_CC_OKAY:
  81. $ !
  82. $ ! Option file to use when linking genarch.c
  83. $ !
  84. $ SET COMMAND GNU_CC:[000000]GCC.CLD
  85. $ CREATE RTL.OPT
  86. GNU_CC:[000000]GCCLIB.OLB/LIBRARY
  87. SYS$SHARE:VAXCRTL.EXE/SHARE
  88. $ !
  89. $ !
  90. $ ! Now build everything
  91. $ !
  92. $ @VMS.MAK 'P1 'P2 'P3
  93. $ !
  94. $ !
  95. $ ! Cleanup
  96. $ !
  97. $ IF F$SEARCH("RTL.OPT") .NES. "" THEN DELETE RTL.OPT;*
  98. $ !
  99. $ ! ALL DONE
  100.